Here is the entire Archaeology Tours page code. If you are new to markup and programming code, take heart. The rapid acceptance of HTML is based on its simple, logical syntax and plain language.
Code comments are set off by the <!--COMMENT-->
tag and are used to document a project as it is written. You are encouraged to use comments liberally in your own work to introduce discrete code blocks, to clarify syntax, and to make it easier for you and others to review and edit the code in the future.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <TITLE>Archeology Tours</TITLE> </HEAD> <!-- add background image --> <!-- set text color --> <BODY BACKGROUND="image1.jpg" TEXT="Navy"> <!-- link to Allaire --> <P>This page was created with <B>HomeSite</B>, which you can find at <A HREF="http://www.allaire.com">Allaire's Web site</A>.</P> <!-- insert image --> <IMG SRC="greekcolumn.gif" WIDTH=111 HEIGHT=187 BORDER=0 ALIGN="RIGHT" ALT="Greek Column"> <!-- add header 1 --> <H1>Archeology Tours</H1> <!-- add horizontal rule --> <HR WIDTH="80%" COLOR="Black" NOSHADE> <!-- add line breaks --> <BR><BR><BR><BR> <!-- set red paragraph text --> <P ALIGN="center"><FONT FACE="Arial" SIZE="+3" COLOR="Red">Travel Back In Time!</FONT></P> <!-- begin table --> <TABLE CELLSPACING="0" CELLPADDING="3" BORDER="1"> <!-- first column spans two rows --> <TR> <!-- begin left table cell --> <TD ROWSPAN="2"><P>Welcome to Archaeology Tours, the first choice of travelers and adventurers. Our Mediterranean Cruise features luxury accommodations, with stops in the following ancient cities:</P> <UL> <LI>Crete <LI>Istanbul <LI>Alexandria </UL> <P>Follow our guides back in time as you cruise the beautiful waters of antiquity and visit important archaeological digs.</P> </TD> <!-- begin top right cell --> <TD ALIGN="center" BGCOLOR="Yellow"><A HREF="tickets.htm">Purchase Cruise Tickets</A></TD> </TR> <!-- begin second row --> <TR> <!-- begin bottom right cell --> <TD ALIGN="center" BGCOLOR="Lime"><A HREF="map.htm">Interactive Tour Map</A></TD> </TR> </TABLE> </BODY> </HTML>